home *** CD-ROM | disk | FTP | other *** search
/ Dr. Windows 3 / dr win3.zip / dr win3 / WINPROGS / SAMDU240.ZIP / FDRIVE.H < prev    next >
Text File  |  1993-10-01  |  2KB  |  35 lines

  1. /*********************************************************************/
  2. /*                                                                   */
  3. /*    Name:    FDRIVE.H                                              */
  4. /*                                                                   */
  5. /*    Copyright (c) Stewart A. Berman 1992, All rights reserved      */
  6. /*                                                                   */
  7. /*********************************************************************/
  8. #ifndef __FDRIVE_H__
  9. #define __FDRIVE_H__
  10.  
  11. #include "VDrive.h"
  12.  
  13. #ifdef __cplusplus
  14. extern "C" {
  15. #endif /* _cplusplus */
  16.  
  17. #ifndef _CPPINTERFACE
  18.  
  19. VOID far * FAR PASCAL FDriveCreate ( LPCSTR lpczFileName, LPCSTR lpczApplicationTitle, LPCSTR lpczVersion, lpfnHANDLESTATUS lpfnNewHandleStatus ) ;
  20. VOID       FAR PASCAL FDriveDelete ( VOID far *pCFDrive ) ;
  21. UINT       FAR PASCAL FDriveFormatTrack ( VOID far *pCFDrive, UINT nCylinder, UINT nHead ) ;
  22. UINT       FAR PASCAL FDriveForceReset ( VOID far *pCFDrive ) ;
  23. UINT       FAR PASCAL FDriveReadSectors ( VOID far *pCFDrive, UINT nCylinder, UINT nHead, UINT nSector, UINT nCount, LPBYTE lpcBuffer ) ;
  24. UINT       FAR PASCAL FDriveReset ( VOID far *pCFDrive ) ;
  25. UINT       FAR PASCAL FDriveSetRead ( VOID far *pCFDrive, UINT nTempType, UINT nCylinders ) ;
  26. UINT       FAR PASCAL FDriveSetWrite ( VOID far *pCFDrive, UINT nTempType, UINT nCylinders ) ;
  27. UINT       FAR PASCAL FDriveWriteSectors ( VOID far *pCFDrive, UINT nCylinder, UINT nHead, UINT nSector, UINT nCount, LPBYTE lpcBuffer ) ;
  28.  
  29. #ifdef __cplusplus
  30.            }
  31. #endif /* _cplusplus */
  32.  
  33. #endif /* __FDRIVE_H__ */
  34.  
  35.